.post-img {
    width: 80%;
    padding-top: 150px;
    display: flex;
    justify-content: center;
    text-align: center;
    place-items: center;
    margin: auto;
}

.post-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    text-align: center;
    margin: 40px 0;
    gap: 15px;
    position: relative;
}

.post-text2 {
    content: "";
    display: block;
    width: 80%;
    height: 0.5px;
    background: #051928;
    position: absolute;
    left: 10%;
    top: 100px;
}

.post-text h1 {
    font-family: Barlow;
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    text-align: center;
    color: #051928;
}

.post-text p {
    font-family: Source Sans Pro;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #051928;
    width: 80%;
    height: 100%;
    margin: 50px;
}

.post-text h2 {
    font-family: Barlow;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #222222;
    width: 80%;
}

.post-text span {
    font-family: Barlow;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    letter-spacing: 1px;
    text-align: center;
    color: #051928;
}

.post-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    place-items: center;
    margin: auto;
    width: 80%;
    gap: 40px;
}

.post-images img {
    width: 100%;
    height: 100%;
}

.post-text h3 {
    font-family: Barlow;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    letter-spacing: 1px;
    text-align: center;
    color: #3D50B1;
}

.post-text h4 {
    font-family: Barlow;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    letter-spacing: 1px;
    text-align: left;
    color: #051928;
}

.comment-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    width: 100%;
    height: 100%;
    margin: 40px 0;
}

.comment-btn {
    background-color: #FFC72C;
    color: #051928;
    border-radius: 30px;
    padding: 10px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: Barlow;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comment-btn:hover {
    background-color: #5D778C;
    color: #fff;
    border-color: yellow;
}